home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-06 / faxdoc.zip / 230.LIT < prev    next >
Text File  |  1992-12-04  |  4KB  |  61 lines

  1.                             FYI
  2.  
  3. Note: The origin of this information may be internal or external to Novell.  Novell makes every effort within its means to verirfy this information.  However, the information provided in this document is FOR YOUR INFORMATION only.  Novell makes no explicit or implied claims to the validity of this information.
  4.  
  5.                 TITLE:   Assisting Floppy Based Clients
  6.          DOCUMENT ID#:   FYI.P.6017
  7.                  DATE:   October 29, 1991
  8.               PRODUCT:   NetWare Lite
  9.       PRODUCT VERSION:   All versions
  10.            SUPERSEDES:   NA
  11.  
  12.               SYMPTOM:   NA
  13.  
  14. ISSUE/PROBLEM
  15.  
  16. Assisting Floppy Based Clients
  17.  
  18. If there are workstations on the network that don't have hard disks then we suggest that NetWork Directories be set up to help those workstations.  A DOS shared Network Directory should be created so that workstations with no hard disks can load DOS commands from the network.   A Network Directory sharing IBM DOS version 3.10 (named IBM_DOS_310 perhaps) would be useful for those CLIENTs with only floppy drives to get to their version of DOS.  In conjunction with this, the DOS environment variable "COMSPEC" should be set to allow you to load COMMAND.COM from across the network.  For example, these lines could be included in an AUTOEXEC.BAT or STARTNET.BAT file:
  19.  
  20.     NET MAP F: IBM_DOS_310
  21.     SET COMSPEC=F:\COMMAND.COM
  22.  
  23. In addition, workstations that only have floppies can be assisted by creating a Network Directory where the NetWare Lite utility (NET.EXE, NET.OVL, NET.HLP and LITE$RUN.OVL) can be loaded; instead of always loading them from the floppy.  We suggest that a Network Directory called NWLITE be created.  This directory should be a SERVER's C:\NWLITE  directory.  We also suggest that this Network Directory be given default rights of READ and not the default of ALL.
  24.  
  25. All floppy-only CLIENTs should map a drive to this resource and add the drive to their DOS path.  This will allow the loading of the NET utility from across the network; a much better solution than loading from floppy.  For example, these lines could be included in an AUTOEXEC.BAT or STARTNET.BAT file:
  26.  
  27.     NET MAP M: NWLITE
  28.     PATH=M:.;%PATH%
  29.  
  30. If you want to run the CLIENT from a floppy drive and have that diskette be the boot diskette, the following configuration is suggested.  (Where ever NE2000.COM appears, replace it with the appropriate driver name you are using.  Also, L: and M: are simply used as examples; you may use any other valid driver letters.  We map drive M: to the Network Directory NWLITE as described above.  Similarly, L: is mapped to the Network Directory IBM_DOS_310 as described above.)
  31.  
  32.     1.    Create a bootable diskette using the FORMAT A: /S                  command.
  33.  
  34.     2.    Copy the following NetWare Lite files to the diskette:
  35.         LSL.COM
  36.         NE2000.COM
  37.         IPXODI.COM
  38.         CLIENT.EXE
  39.         NET.EXE
  40.         NET.CFG
  41.  
  42.     3.    Create an AUTOEXEC.BAT with the following lines added              to it:
  43.         LSL
  44.         NE2000
  45.         IPXODI A
  46.         CLIENT
  47.         NET LOGIN
  48.         NET MAP L: IBM_DOS_310
  49.         NET MAP M: NWLITE
  50.         PATH=L:\;M:\;%PATH%
  51.         SET COMSPEC=L:\COMMAND.COM
  52.  
  53.     4.    Create an CONFIG.SYS with the following line added to              it.
  54.         LASTDRIVE=M
  55.  
  56. For those Network Directories that contain applications (executables) the drives used to map to these applications should be included in the DOS environment variable PATH.  For example, these lines could also be included in an AUTOEXEC.BAT or STARTNET.BAT file:
  57.  
  58.     NET MAP G: TURBOC
  59.     NET MAP H: WORDPERFECT
  60.     NET MAP I: GAMES
  61.     SET PATH=G:\BIN;H:.;I:\TETRIS;%PATH%